home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / C / TCCLIB.ZIP / GETINT.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-07-18  |  159 b   |  12 lines

  1. int  GetLine( char *s, int len, int start );
  2.  
  3. #include <stdlib.h>
  4.  
  5. int GetInt( void )
  6. {
  7.     char s[20];
  8.  
  9.     GetLine( s, 18, 0 );
  10.     return( atoi( s ) );
  11. }
  12.